home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_09_03
/
9n03076b
< prev
next >
Wrap
Text File
|
1991-01-15
|
890b
|
30 lines
/*************************************************/
/* */
/* puts.c */
/* */
/* Put a string to console. Uses stdio.h putchar */
/* macro for operating system interface. Outputs */
/* a newline after the string */
/* */
/* Copyright (c) 1990 */
/* Pasquale J. Villani */
/* All Rights Reserved */
/* */
/* */
/*************************************************/
#include <stdio.h>
puts(s)
const char *s;
{
int c;
while ((c = *s++) != '\0')
putchar(c);
putchar('\n');
}